1   //==============================================================================
2   // file :       GoCMD.java
3   // project:     East Networks News System
4   //
5   // last change: date:       $Date: 2003/09/10 09:28:37 $
6   //              by:         $Author: bitiboy $
7   //              revision:   $Revision: 1.1 $
8   //------------------------------------------------------------------------------
9   // copyright:   GNU GPL Software License (see class documentation)
10  //==============================================================================
11  package net.eastol.news.command;
12  
13  
14  /*
15   * $Id: GoCMD.java,v 1.1 2003/09/10 09:28:37 bitiboy Exp $
16   *
17   * Copyright 2003 Acai Software All Rights Reserved.
18   *
19   * This file GoCMD.java is part of the East Networks News System.
20  
21   * The East Networks News System is free software; you can redistribute it and/or modify
22   * it under the terms of the GNU General Public License as published by
23   * the Free Software Foundation; either version 2 of the License, or
24   * (at your option) any later version.
25  
26   * East Networks News System is distributed in the hope that it will be useful,
27   * but WITHOUT ANY WARRANTY; without even the implied warranty of
28   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29   * GNU General Public License for more details.
30  
31   * You should have received a copy of the GNU General Public License
32   * along with the East Networks News System; if not, write to the Free Software
33   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
34  
35   * http://www.justhis.com http://ejb.cn
36   * CONTACT: email = webmaster@justhis.com superaxis@sohu.com
37   */
38  import com.justhis.util.exception.LogicException;
39  import com.justhis.util.exception.UtilException;
40  
41  import net.eastol.news.common.CommonCommand;
42  
43  import java.sql.SQLException;
44  
45  import javax.servlet.ServletException;
46  
47  
48  /***
49   * TODO DOCUMENT ME!
50   *
51   * @author <a href="http://blog.ejb.cn">acai</a>
52   * @version $Revision $
53   */
54  public class GoCMD extends CommonCommand {
55      //~ Methods ----------------------------------------------------------------
56  
57      /***
58       * TODO DOCUMENT ME!
59       *
60       * @return TODO
61       */
62      public String getName() {
63          return null;
64      }
65  
66      /***
67       * TODO DOCUMENT ME!
68       *
69       * @return TODO
70       *
71       * @throws LogicException TODO
72       * @throws SQLException TODO
73       * @throws ServletException TODO
74       * @throws UtilException TODO
75       */
76      public String execute()
77                     throws LogicException, SQLException, ServletException, 
78                            UtilException {
79          /*String path = request.getServletPath();
80  
81          String xmlFile = path.substring(path.lastIndexOf("/") + 1);
82                  */
83          go();
84  
85          return null; //request.getServletPath();
86      }
87  }
88  
89  
90  /*
91   * $Log: GoCMD.java,v $
92   * Revision 1.1  2003/09/10 09:28:37  bitiboy
93   * *** empty log message ***
94   *
95   *
96  */
This page was automatically generated by Maven